/* Shipper  */

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;  
	font-size: 16px; 
	line-height: 1.5;
	color: #1F1F1F;
	background-color: #ffffff;
}

/* Elementos */

.clearfix::after {
  content: '';
  clear: both;
  display: table;
}

h1 {
	font-size: 3.8rem;
	font-weight: 700; 
	line-height: 1.2;
}

h4 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2; 
}

strong, b {
	font-weight: 700;
}

p {
	margin-bottom: 1rem;
}

.btn-round {
	color: #ffffff;
	 font-size: x-large;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 2px;
}

.btn-round:hover  {
	background-color: #07287C;
	color: #ffffff;
}
.btn-round.b-white {
	border: 2px solid #ffffff;
	background-color: #ffffff;	
}
.btn-round.b-white:hover {
	border: 2px solid #07287C;
	background-color: #07287C;	
}

/* Interletrado */

.ls-1 {
	letter-spacing: 1px;
}

/* Interlineado */

.l-1_2 {
	line-height: 1.2;
}
.l-2 {
	line-height: 2;
}

/* Tamaño */

.s-12 {
	font-size: 0.75rem;
}
.s-14 {
	font-size: 0.85rem;
}
.s-18 {
	font-size: 1.15rem;
}
.s-22 {
	font-size: 1.35rem;
}
.s-28 {
	font-size: 1.75rem;
}
.s-36 {
	font-size: 2.25rem;
}

/* Variables */

.f-light {
	font-weight: 300;
}

/* Colores */

.t-white {
	color: #ffffff;
}
.t-orange {
	color: #F9A613;
}
.t-red {
	color: #FF2600;
}
.t-blue {
	color: #07287C;
}
.t-blue-light {
	color: #0038C6;
}

.b-blue {
	background-color: #0038C6;
}
.b-orange {
	background-color: #F9A613;
}
.b-red {
	background-color: #FF2600;
}
.b-grey {
	background-color: #31302E;
}
.b-light-grey {
	background-color: #F6F6F6;
}
.b-black {
	background-color: #1F1F1F;
}

/* Header */

.main-header {
	display: flex;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	padding: 20px 40px;
	transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);	
}
.main-nav {
	margin: 0;
	padding: 0;
}
.main-nav li {
	padding: 10px;
	display: inline-block;
}
.main-nav li a {
	color: #ffffff;
	font-weight: 700;
}
.main-nav li a:hover {
	color: #FF2600;
}
.main-nav .btn-login {
	margin-left: 40px;
}
.main-nav .btn-login a {
	border: 2px solid #FF2600;	
	-webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);		
}
.main-nav .btn-login a:hover {
	color: #ffffff;
	border: 2px solid #07287C;		
}
.main-nav .btn-register a {
	color: #07287C;
	-webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);		
}
.main-nav .btn-register a:hover {
	color: #ffffff;
}
.main-nav .dropdown:hover > .sub-menu {	
	left: 0;	
}
.sub-menu {
	margin: 10px 0 0 0;
	padding: 0px 0px 10px 0px;
	display: block;
	float: left;
    position: absolute;
    z-index: 99999;
    width: 210px;
    left: -9999px;
    background-color: #FFF;
    border-radius: 4px;
}
.sub-menu li {
	padding-top: 10px;
	padding-bottom: 0;
}
.main-nav .sub-menu li a {
	color: #07287C;
}
.main-nav .sub-menu li a:hover {
	color: #FF2600;
}

/* Flag */

.main-nav .english {
	padding: 0 0 0 10px;
}
.main-nav .english img {
	width: 30px;
	margin-bottom: -2px;
}

/* Small Header */

.main-header.on {
	padding: 10px 40px;
	background-color: #07287C;
	-webkit-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	-moz-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);		
}
.main-header.on #logo img {
	width: 220px;
}
.main-header.on .iso {
	fill: #F9A613;
}
.main-header.on .textlogo {
	fill: #ffffff;
}
.main-header.on nav {
    display: flex;
    align-items: center;	
}
.main-header.on .main-nav {
	margin: 0;
}

/* Nav mobile */

.main-header.open {
	padding-bottom: 520px !important;
	background-color: #31302E;
	-webkit-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	-moz-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);	
}
.main-nav.open {
	display: block;
	height: auto;
	overflow-x: hidden;    
    overflow-y: auto; 
	position: absolute;
	padding: 0; 
	left: 0;
	top: 100px;
	width: 100%;
	z-index: 1001;	
}
.main-nav.open li {
	display: block;
	margin: 0 auto;
	text-align: center;
}
.main-nav.open li a {
	font-size: 1.5rem;
	font-weight: 300;
}
.main-nav.open .btn-ayuda {
	display: none;
}
.main-nav.open .sub-menu {
	float: none;
	display: block;
	position: inherit;
	left: inherit;
	width: auto;
	margin: 0;
	padding: 0;
	background: none;
}
.main-nav.open .sub-menu li {
	padding-top: 0;
}
.main-nav.open .sub-menu li:last-child {
	padding: 20px 0 0 0;
}
.main-nav.open .btn-login, .main-nav.open .btn-register {
	padding: 20px 0;
}
.main-nav.open .btn-login a, .main-nav.open .btn-register a {
	font-size: inherit;
	font-weight: 700;
}

/* Menu mobile */
.menu-mobile-container {
	display: none;
	position: absolute;
	top: 25px;
	right: 20px;
}
.menu-mobile {
	width: 60px;
	height: 40px;
	padding: 10px;
}
.menu-mobile:hover > span {	
	border: 2px solid #F9A613;		
}
.menu-mobile.open span:first-child {
	-webkit-transform: rotate(45deg) translateY(6px) translateX(6px);
	-ms-transform: rotate(45deg) translateY(6px) translateX(6px);
	-o-transform: rotate(45deg) translateY(6px) translateX(6px);
	transform: rotate(45deg) translateY(6px) translateX(6px);
}
.menu-mobile.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg) translateY(1px) translateX(0px);
	-ms-transform: rotate(-45deg) translateY(1px) translateX(0px);
	-o-transform: rotate(-45deg) translateY(1px) translateX(0px);
	transform: rotate(-45deg) translateY(1px) translateX(0px);	
}
.menu-mobile.open span:nth-child(2) {
	display: none;	
}
.menu-mobile span {
	width: 100%;
	border: 2px solid #ffffff;
	display: block;
	-webkit-transition: .2s cubic-bezier(0, 0, 0, 1) all;
	-o-transition: .2s cubic-bezier(0, 0, 0, 1) all;
	transition: .2s cubic-bezier(0, 0, 0, 1) all;
	transform-origin: center;
}
.menu-mobile span:nth-child(2) {
	margin: 4px 0;
}
.menu-mobile span:nth-child(3) {
	margin: 4px 0 0 0;
}

/* Cómo Funciona */

#como-funciona {
	padding: 80px 40px 200px 40px;
	background-color: #F6F6F6;
}
.funciona {
	margin: 60px 0 80px 0;
	padding: 0;
	list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.funciona li {
	padding: 30px 25px 25px 25px;
	width: 24%;
	position: relative;
	background-color: #fff;
	border-bottom: 10px solid #FF2600;
	-webkit-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	-moz-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);	
}
.funciona li div {
	height: 180px;
	display: flex;
    align-items: center;
    justify-content: center;	
}

/* Sliders */

#main-slider {
	width: 100%;
	height: 650px;	
}
.slider-text {
	position: absolute;
	top: 55%;
	left: 100px;
	width: 38%;
	color: #ffffff;
	transform: translateY(-50%);
	z-index: 2;		
}
.slider-text h1 {
	font-weight: 300;
	line-height: 0.95;
}
.slider-text sup {
	top: -0.2em;
	font-size: 16px;
}
.slider-content {
	width: 100%;
	height: 650px;
	position: relative;		
}
.slide-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;	
	background-color: #07287C;
}
.slide-image:before {
	content: '';
	z-index: 0;
	position: absolute;	
	bottom: 0;
	left: 0;	
	width: 100%;
	height: 55px;
	background-color: #0038C6;
}
.background-image {
	height: 500px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
/*.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 500px;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: bottom right;
}*/

.logo-slider {
	margin: 60px 0;
}
.logo-slider .shop {
    width: 180px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}
.logo-slider .shop img {	
    max-height: 60px;
}
.logo-slider .slick-dots {
	margin: 50px auto 0 auto;
	padding: 0; 
	text-align: center;
	list-style-type: none;
}
.logo-slider .slick-dots li {
	display: inline-block;
	margin: 0 4px;
	border: 1px solid #FF2600;
	border-radius: 100%;
}
.logo-slider .slick-dots button {
	display: block;
	width: 12px;
	height: 12px;
	padding: 0;     
	border: none;
	background-color: transparent;
	text-indent: -9999px;
}
.logo-slider .slick-dots li:hover {
	background-color: #FF2600;
}
.logo-slider .slick-dots  li.slick-active {
	background-color: #FF2600;
}

/* Banners */

.btn-play {
	display: inline-block;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	position: relative;
}
.btn-play:hover {
	background-color: #31302E;
}
.btn-play:after {
	content: '';
	position: absolute;
	/* background-image: url('../img/icons/play.svg'); */
	background-image: url('/public/img/icons/play.svg');
	width: 20px;
	height: 35px;
	top: 50%;
	left: 54%;
	transform: translate(-50%,-50%);
}

.banner-somos {
	padding: 80px 40px;
}

.imagen-traer {
    display: flex;
    align-items: center;
	height: 100%;
	background-position: center;
	background-size: cover;
	/* background-image: url(../img/banner/que-puedo-traer-e.jpg); */
	background-image: url('/public/img/usa/banner/que-puedo-traer-e.jpg');
	position: relative;
	border-bottom: 10px solid #FF2600;
}
.imagen-traer div {
	padding: 0 80px;
	position: relative;
	z-index: 2;
}
.imagen-traer div .btn-round {
    -webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
    box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);	
}
.imagen-traer p {
	font-weight: 700;
	margin-top: 10%;
}
.imagen-traer p a {
	color: #fff;
	border-bottom: 1px solid #FF2600;
}
.imagen-traer p a:hover {
	color: #FF2600;
}
.imagen-traer:after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	top: 0;
	left: 0;
	z-index: 1;
	position: absolute;
}
.contenido-traer {
	padding: 80px 70px 10px 70px;
	border-bottom: 10px solid #FF2600;
}
.contenido-traer .chequea a {
	color: #1F1F1F;
	font-weight: 900;
	border-bottom: 1px solid #FF2600;
}
.contenido-traer .chequea a:hover {
	color: #FF2600;
	border-bottom: 1px solid #fff;
}
.contenido-traer .btn-round {
	-webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);		
}

.contacto-pyme {
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
.contacto-pyme:hover {
	color: #000000;
	border-bottom: 1px solid #000000;
}

/* Calculadora */

.calculadora-container {
	margin: -120px auto 40px auto;
	background: #07287C;
	border-radius: 4px;
	-webkit-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	-moz-box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);
	box-shadow: 2px 6px 10px 0px rgba(72,69,69,0.3);	
}
#calculator-form label {
	color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
}
#calculator-form .form-control {
	border-radius: 0;
}
.destacado-prohibidos {
	background-color: #07287C;
	border-radius: 0 0 4px 4px;
}
.destacado-prohibidos a {
	color: #ffffff;
}
.destacado-prohibidos a:hover {
	color: #FF2600;
}
.destacado-prohibidos a strong {
	margin-left: 10px;
	border-bottom: 1px solid #ffffff;
}

/* Registrate */

#form-registro label {
	font-size: 0.85rem;
	letter-spacing: 1px;
	font-weight: 700;
}
#form-registro input[type="text"], #form-registro input[type="email"], #form-registro textarea, #form-registro input[type="password"] {
	padding: 20px;
	font-size: 14px;
	border-radius: 0;
	width: 100%;
	margin-bottom: 20px;
}
#form-registro select {
	border-radius: 0;
	margin-bottom: 20px;	
}

.destacado-registrate {
	background-color: #1E7B95;
	border-radius: 0 0 10px 10px;
}

/* Ventajas */

.ventajas {
	padding: 80px 40px;
    background-color: #F6F6F6;	
    overflow-x: hidden;
}
.ventajas h1 {
	line-height: 1;
}
.ventajas-img {
	height: 200px;
}
.ventajas-top, .ventajas-bottom {
	position: relative;
}

/* */

#pymes .btn-round {
	-webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3);	
}

/* Contacto */

#contacto {
	padding: 80px 0 140px 0;
}
#contacto h1 {
	margin-bottom: 60px;
}
#contacto .datos a {
	color: #FF2600;
	border-bottom: 1px solid #FF2600;
}
#contacto .datos a:hover {
	color: #000000;
	border-bottom: 1px solid #000000;
}
#contacto .datos .wa a {
	color: #000;
	border-bottom: none;
}
#contacto .datos .wa img {
	margin-right: 10px;
}
#contacto .datos a:hover {
	color: #198EB0;
}
#contacto .datos .social {
	margin: 30px 0 10px 0;
}
#contacto .datos .social a {
	border-bottom: none;
}

/* Form */

::-webkit-input-placeholder { 
	color: #7E7D7B;
}
:-ms-input-placeholder { 
	color: #7E7D7B;
}
::placeholder {
	color: #7E7D7B;
}	

#form-contact {
	margin-top: 30px;
}
#form-contact label {
	font-size: 0.85rem;
	letter-spacing: 1px;
	font-weight: 700;
}
#form-contact input[type="text"], #form-contact input[type="email"], #form-contact textarea {
	padding: 20px;
	font-size: 14px;
	border-radius: 0;
	width: 100%;
	margin-bottom: 30px;
	background-color: #F1FBFE;
}
#form-contact #btn_envio_email_contacto {
	float: right;
	padding: 10px 40px;
}
#form-contact .btn-round.b-red {
	-webkit-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3) !important;
	-moz-box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3) !important;
	box-shadow: 3px 4px 4px 0px rgba(0,0,0,0.3) !important;	
}

/* Social */

.social {
	margin: 0;
	padding: 0;
}
.social li {
	width: auto;
	display: inline-block;
}
.social li a {
	width: auto;
	display: block;
	min-width: 15px;
	margin-right: 15px;
}
.social li a:hover {
	opacity: 0.6;
}

/* Whatsapp */

.btn-whatsapp {
	position: fixed;
	width: 70px;
	height: 70px;	
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	border-radius: 70px;
	background-color: #4dc247;   
}
.icon-whatsapp {
	line-height: 1;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.btn-whatsapp-small {
	margin-left: 5px;
	display: inline-block;
	width: 30px;
	height: 30px;	
	border-radius: 70px;
	background-color: #4dc247;   
}
.btn-whatsapp-small .icon-whatsapp {		
	border-bottom: none;
	position: relative;
	text-align: center;
}
.btn-whatsapp-small .icon-whatsapp img {		
	width: 60%;
	margin-top: 3px;
}

/* Logos */
.logos {
	display: flex;
	justify-content: space-around;
}

/* Modal */

.modal {
	z-index: 99999;
}
.modal-header {
	padding: 2rem;
	border-bottom: none;
	justify-content: center;
}
.modal-header .close {
	font-size: 3rem;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 10px;
	font-weight: 300;
	color: #ffffff;
	opacity: 1;
	text-shadow: none;
}
.modal-header h5 {
	font-weight: 300;
	font-size: 2.5rem;
	color: #ffffff;
}
.modal-content {
	color: #ffffff;
	background-color: #07287C;
	border-radius: 10px;
}
.modal-body ul {
	padding-left: 20px;	
	list-style: disc;
} 
.modal-backdrop.show {
    opacity: .85;
}
/* Footer */

footer {
	color: #fff;
	padding: 40px;
	background-color: #000;
}
footer a {
	color: #fff;	
}
footer a:hover {
	color: #FF2600;
}